home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_05 / allison / date4.h < prev    next >
C/C++ Source or Header  |  1995-03-12  |  307b  |  19 lines

  1. LISTING 10 - Hides the Date's data in an incomplete type
  2. // date4.h
  3.  
  4. struct DateRep;
  5.  
  6. struct Date
  7. {
  8.     Date(int, int, int);
  9.     ~Date();
  10.     char *format(char *) const;
  11.     int compare(const Date &) const;
  12.  
  13. private:
  14.     struct DateRep *drep;
  15.  
  16.     static const char * month_text[13];
  17. };
  18.  
  19.